/* styles.css */
body {
    font-family: Arial, sans-serif;
}

table {
    width: 100%;
}

table td {
    padding: 10px;
}

.clickableImage {
    display: block;
    width: 100px; /* Adjust as needed */
    height: auto;
    cursor: pointer;
}

.textBox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(238,233,247); /* Slightly shaded background */
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    width: 80%; /* Adjust as needed */
    max-width: 500px; /* Adjust as needed */
}

.textBox:target {
    display: block;
}

.boxContent {
    position: relative;
    padding-bottom: 60px; /* Add space for the close button */
}

.boxTitle {
    text-align: center;
    margin: 0 0 20px 0; /* Space between title and content */
    font-size: 30px; /* Adjust as needed */
}

.closeButton {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    color: #000;
    background: #ccc;
    padding: 10px 20px;
    border-radius: 3px;
}

.closeButton:hover {
    background: #aaa;
}
